演習1: 四則演算
Pythonチュートリアルの
Pythonを電卓として使う
にある例を実際にPythonの会話型モード(REPL)で実行してみましょう。
どんな結果になるか考えてから実行すると、より良く理解できるようになります。
code: python
2 + 2
code: python
50 - 5*6
code: python
(50 - 5*6) / 4
code: python
8 / 5
code: python
17 / 3
code: python
17 // 3
code: python
17 % 3
code: python
5 * 3 + 2
code: python
4 * 3.75 - 1
from
演算子
next
演習2: 文字列操作
#Pythonセミナー